home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / dev / c / MemPools1_2.lha / mempools / SMakefile < prev    next >
Makefile  |  1995-05-22  |  3KB  |  116 lines

  1. ###
  2. ###  MemPools:  malloc() replacement using standard Amiga pool functions.
  3. ###  Copyright  (C)  1994    Jochen Wiedmann
  4. ###
  5. ###  This program is free software; you can redistribute it and/or modify
  6. ###  it under the terms of the GNU General Public License as published by
  7. ###  the Free Software Foundation; either version 2 of the License, or
  8. ###  (at your option) any later version.
  9. ###
  10. ###  This program is distributed in the hope that it will be useful,
  11. ###  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ###  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ###  GNU General Public License for more details.
  14. ###
  15. ###  You should have received a copy of the GNU General Public License
  16. ###  along with this program; if not, write to the Free Software
  17. ###  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. ###
  19. ###
  20. ###  This is the Makefile for SMake.
  21. ###
  22. ###
  23. ###  Computer:  Amiga 1200
  24. ###
  25. ###  Compilers: Dice 3.01
  26. ###             SAS/C 6.50
  27. ###             gcc 2.6.1
  28. ###
  29. ###
  30. ###  Author:    Jochen Wiedmann
  31. ###             Am Eisteich 9
  32. ###       72555 Metzingen
  33. ###             Germany
  34. ###
  35. ###             Phone: (0049) 7123 14881
  36. ###             Internet: jochen.wiedmann@uni-tuebingen.de
  37. ###
  38.  
  39.  
  40. SRCS=calloc.c free.c init.c malloc.c realloc.c strdup.c \
  41.      MemPoolPuddleSize.c MemPoolThreshSize.c MemPoolFlags.c
  42.  
  43. OBJS=calloc.o free.o init.o malloc.o realloc.o strdup.o \
  44.      MemPoolPuddleSize.o MemPoolThreshSize.o MemPoolFlags.o
  45.  
  46. LIBS=mempoolss.lib mempoolssr.lib mempools.lib libmempools.a
  47.  
  48. CFLAGS=ANSI OPTIMIZE
  49.  
  50. ############################################################################
  51. ###
  52. ###  Targets: all clean dist check time
  53. ###
  54. ############################################################################
  55.  
  56. all: mempools.lib
  57.  
  58. dist:
  59.     dmake dist
  60.  
  61.  
  62. mempoolss.lib:
  63.     dmake mempoolss.lib
  64.  
  65. mempoolssr.lib:
  66.     dmake mempoolssr.lib
  67.  
  68. mempools.lib: $(OBJS)
  69.     oml mempools.lib r $(OBJS)
  70.  
  71. libmempools.a:
  72.     Delete #?.o quiet
  73.     gmake libmempools.a
  74.  
  75. clean:
  76.     Delete #?.o #?.lib lib#?.a dtmp:comp? all quiet
  77.  
  78. check: TimeMem
  79.     @avail flush
  80.     @TimeMem VERBOSE
  81.     @avail flush
  82.     @Delete TimeMem TimeMem.o quiet
  83.  
  84. time: TimeMem TimeMem.dice TimeMem.sas TimeMem.ixemul TimeMem.libnix TimeProg
  85.     @echo You'd better get a cup of coffee now ...
  86.     @echo
  87.     @echo Timing Dice functions:
  88.     @TimeProg "TimeMem.dice"
  89.     @echo Timing SAS/C functions
  90.     @TimeProg "TimeMem.sas"
  91.     @echo Timing ixemul functions
  92.     @TimeProg "TimeMem.ixemul"
  93.     @echo Timing libnix functions
  94.     @TimeProg "TimeMem.libnix"
  95.     @echo Timing MemPool functions
  96.     @TimeProg "TimeMem"
  97.  
  98. TimeMem: TimeMem.c mempools.lib
  99.     sc LINK $(CFLAGS) PROGRAMNAME TimeMem TimeMem.c LIB mempools
  100.  
  101. TimeMem.dice:
  102.     dmake TimeMem.dice
  103.  
  104.  
  105. TimeMem.sas: TimeMem.c rand.c
  106.     sc LINK $(CFLAGS) PROGRAMNAME TimeMem.sas TimeMem.c rand.c
  107.  
  108. TimeMem.ixemul: TimeMem.c
  109.     gmake TimeMem.ixemul
  110.  
  111. TimeMem.libnix: TimeMem.c
  112.     gmake TimeMem.libnix
  113.  
  114. TimeProg: TimeProg.c
  115.     sc LINK $(CFLAGS) PROGRAMNAME TimeProg TimeProg.c
  116.